home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
cardga1g
/
form1.frm
next >
Wrap
Text File
|
1998-01-15
|
2KB
|
58 lines
VERSION 4.00
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "Form1"
ClientHeight = 3780
ClientLeft = 2055
ClientTop = 2070
ClientWidth = 6900
Height = 4185
Left = 1995
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3780
ScaleWidth = 6900
Top = 1725
Width = 7020
Begin VB.FileListBox File1
Height = 2985
Left = 120
Pattern = "*.bmp"
TabIndex = 1
Top = 720
Width = 1575
End
Begin VB.CommandButton Command1
Caption = "&Set Wallpaper"
Height = 495
Left = 240
TabIndex = 0
Top = 120
Width = 1215
End
Begin VB.Image Image1
Height = 3615
Left = 1920
Stretch = -1 'True
Top = 120
Width = 4935
End
End
Attribute VB_Name = "Form1"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Sub Command1_Click()
Call ChangeWallpaper(File1.filename)
End Sub
Private Sub File1_Click()
A = File1.Path & "\" & File1.filename
Image1.Picture = LoadPicture(A)
End Sub
Private Sub Form_Load()
File1.Path = "C:\Windows"
End Sub